home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Tools / Languages / MacMarlais 0.5.3 / DIRM Examples / hello-world.dyl < prev    next >
Encoding:
Text File  |  1994-09-19  |  267 b   |  13 lines  |  [TEXT/Mrls]

  1. module:        dylan-user
  2. author:        Patrick C. Beard (beard@cs.ucdavis.edu)
  3. copyright:        (C) 1994 Patrick C. Beard, All rights reserved.
  4. version:        1.0
  5.  
  6. // how one might implement a stand-alone program.
  7.  
  8. define method main (#rest args)
  9.   princ("Hello, world.");
  10. end;
  11.  
  12. main();
  13.